home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / simulato / v2_3_mc6.tz / v2_3_mc6 / testfiles / test1.asm < prev    next >
Assembly Source File  |  1994-05-02  |  348b  |  16 lines

  1. ;
  2. ; test1.asm
  3. ; C. Ward, 9/15/92
  4. ;
  5. ; Tests a few of the instructions on the simulator.  No input is
  6. ; required and no output is generated.  Inspect registers a0 and
  7. ; a5 after execution.  They should have the value 00003000.  The
  8. ; program should terminate properly.
  9. ;
  10.   org  $1000
  11.   move #$3000,a0
  12.   move #$3000,a5
  13.   move #228,d7
  14.   trap #14
  15.   end
  16.